The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Changes 03
META.yml 23
Makefile.PL 12
lib/Padre/Plugin/PerlCritic.pm 22
4 files changed (This is a version diff) 510
@@ -1,5 +1,8 @@
 Revision history for Perl extension Padre-Plugin-PerlCritic.
 
+    - Turkish translation updated (BURAK)
+    - Compatibility with latest Padre (CHORNY)
+
 0.07 Tue Mar 02 2010
     - Changed build to Module::Install
     - Added integration with config_perlcritic config entry
@@ -8,7 +8,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: 6.42
 distribution_type: module
-generated_by: 'Module::Install version 0.91'
+generated_by: 'Module::Install version 1.00'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -25,4 +25,5 @@ requires:
   perl: 5.8.0
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.07
+  repository: http://svn.perlide.org/padre/trunk/Padre-Plugin-PerlCritic/
+version: 0.08
@@ -1,7 +1,8 @@
-use inc::Module::Install::DSL 0.91;
+use inc::Module::Install::DSL 0.92;
 
 name          Padre-Plugin-PerlCritic
 all_from      lib/Padre/Plugin/PerlCritic.pm
 requires      Padre         0.54
 requires      Perl::Critic  0
 test_requires Test::More    0.47
+repository    http://svn.perlide.org/padre/trunk/Padre-Plugin-PerlCritic/
@@ -6,7 +6,7 @@ use warnings;
 use Padre::Wx     ();
 use Padre::Plugin ();
 
-our $VERSION = '0.07';
+our $VERSION = '0.08';
 our @ISA     = 'Padre::Plugin';
 
 =pod
@@ -25,7 +25,7 @@ on the default .perlcriticrc configuration. See Perl::Critic for details.
 =cut
 
 sub padre_interfaces {
-	'Padre::Plugin' => '0.26',
+	'Padre::Plugin' => '0.43',
 	'Padre::Config' => '0.54',
 }